Skip to content
dc edited this page Feb 22, 2016 · 1 revision

Using Cash globally

You can install Cash so that each compatible command will be installed in your system path:

> npm install cash-global -g
> rm -rf /my-troubles
> ls

This installer will check your system for existing commands that may conflict with Cash and skip those commands. The installer will list which commands have been installed and which were skipped.

In addition to individual commands cash-global will also register cash and $ into the system path, in case you want to go fully interactive. This has the benefit of supporting tabbed autocompletion, piping, improved command history and aliases for Cash.

To uninstall, run npm uninstall cash-global -g.

Installing individual commands

In addition to installing all commands, you can install an individual command globally in your path.

> npm install cash-{command}`

The following commands are currently supported:

To uninstall, run npm uninstall cash-{command} -g.

Other ways to use Cash